
strana 61
---------
<UserControl
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
	x:Class="SilverlightApplication1.MainPage"
	Width="640" Height="480">

	<Grid x:Name="LayoutRoot" Background="White">
	   <TextBlock x:Name="tblOznam" Width="100" Height="20" Text="Oznam"/>
	</Grid>
</UserControl>




strana 65
---------
<Button>
  <Button.Width>100</Button.Width>
  <Button.Height>30</Button.Height>
  <Button.Background>
    <SolidColorBrush Color="Blue"/>
  </Button.Background>
  <Button.Foreground>
    <SolidColorBrush Color="Red"/>
  </Button.Foreground>
  <Button.Content>
    O.K.
  </Button.Content>
</Button>



<Button Width="100" Height ="30" Background="Blue" Foreground="Red" Content="O.K"/>



